home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C!T ROM 3
/
ct-rom iiib.zip
/
ct-rom iiib
/
OS2
/
SPEL
/
PMGNUCHS
/
PMCHSSRC.ZIP
/
test.c
< prev
next >
Wrap
Text File
|
1994-04-21
|
4KB
|
147 lines
//
// Copyright (C) 1986, 1987, 1988, 1989, 1990 Free Software Foundation, Inc.
// Copyright (c) 1988, 1989, 1990 John Stanback
//
// Project: OS/2 PM Port of GNU CHESS 4.0 (PmChess)
//
// Version: 1994-4-17
//
// Module: Playing Board Display (Board.c)
//
// Porter: Ported to Windows 3.0 by Darly Baker
//
// Porter: Ported to OS/2 1.2+ by Kent Cedola
//
// Porter: Revised and ported to OS/2 2.1 by Yibing Fan
//
// System: OS2 2.1 using emx0.8g
//
// Remarks: This code modified very little from KC's code (YF)
//
// Remarks: This code converted from Windows to PM using a straight port
// method with some editing improvements. (KC)
//
// License:
//
// CHESS is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY. No author or distributor accepts responsibility to anyone for
// the consequences of using it or for whether it serves any particular
// purpose or works at all, unless he says so in writing. Refer to the
// CHESS General Public License for full details.
//
// Everyone is granted permission to copy, modify and redistribute CHESS,
// but only under the conditions described in the CHESS General Public
// License. A copy of this license is supposed to have been given to you
// along with CHESS so you can know your rights and responsibilities. It
// should be in a file named COPYING. Among other things, the copyright
// notice and this notice must be preserved on all copies.
//
#define INCL_DOS
#define INCL_PM
#include <os2.h>
#include <time.h>
#include "PmChess.h"
#include "GnuChess.h"
#include "Defs.h"
#include "Resource.h"
//
// Define dialog procedure's prototypes.
//
MRESULT EXPENTRY TestProc(HWND hWnd, ULONG msg, MPARAM mp1, MPARAM mp2);
//***************************************************************************
//
// Routine: TestDialog(In)
//
// Remarks: This routine displays a dialog that test the speed of the GNU
// logic.
//
// Returns: None.
//
void TestDialog(HWND hWnd)
{
WinDlgBox(HWND_DESKTOP, hWnd, TestProc, 0, IDD_TEST, NULL);
}
void
TestSpeed(HWND hWnd, int iditem, void (*f) (short int side, short int ply))
{
unsigned jj;
unsigned i;
long cnt, rate, t1, t2;
char tmp[40];
t1 = time (0);
for (i = 0; i < 10000; i++)
{
f (opponent, 2);
for(jj=TrPnt[2];i<TrPnt[3];jj++)if(!pick(jj,TrPnt[3]-1))break;
}
t2 = time (0);
cnt = 10000 * (TrPnt[3] - TrPnt[2]);
if (t2 - t1)
et = (t2 - t1);
else
et = 1;
rate = (((et) ? ((cnt*100) / et) : 0));
sprintf ( tmp, "Nodes= %8ld, Nodes/Sec= %5ld", cnt, rate);
WinSetDlgItemText (hWnd, iditem, tmp);
}
//***************************************************************************
//
// Routine: TestProc(In, In, In, In)
//
// Remarks: This routine displays a dialog that queries the user of which
// type of piece to promote a pawn.
//
// Returns: The piece selected.
//
MRESULT EXPENTRY TestProc(HWND hDlg, ULONG msg, MPARAM mp1, MPARAM mp2)
{
HPOINTER hCurrent, hWait;
switch (msg)
{
case WM_INITDLG:
WinPostMsg(hDlg, WM_USER+1, NULL, NULL);
return (FALSE);
case WM_COMMAND:
switch (SHORT1FROMMP(mp1))
{
case IDC_OK:
WinDismissDlg(hDlg, TRUE);
break;
default:
return(WinDefDlgProc(hDlg, msg, mp1, mp2));
break;
}
case WM_USER+1:
hCurrent = WinQueryPointer(HWND_DESKTOP);
hWait = WinQuerySysPointer(HWND_DESKTOP, SPTR_WAIT, FALSE);
WinSetPointer(HWND_DESKTOP, hWait);
TestSpeed(hDlg, IDC_TEST_MOVELIST, MoveList);
TestSpeed(hDlg, IDC_TEST_CAPTURELIST, CaptureList);
WinSetPointer(HWND_DESKTOP, hCurrent);
break;
default:
return(WinDefDlgProc(hDlg, msg, mp1, mp2));
break;
}
return (MRESULT)0;
}